c94b59cdcf0568e327c867a0459009ebda158dde,java/src/com/google/template/soy/SoyFileSet.java,Builder,addWithKind,#CharSequence#SoyFileKind#String#,375
Before Change
* @return This builder.
*/
public Builder addWithKind(CharSequence content, SoyFileKind soyFileKind, String filePath) {
setBuilder.add(SoyFileSupplier.Factory.create(content, soyFileKind, filePath));
return this;
}
After Change
* @return This builder.
*/
public Builder addWithKind(CharSequence content, SoyFileKind soyFileKind, String filePath) {
return addFile(SoyFileSupplier.Factory.create(content, soyFileKind, filePath));
}